home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / extra_2 / nadir11.zip / MAKEALL.BAT < prev    next >
DOS Batch File  |  1995-11-08  |  2KB  |  97 lines

  1. @echo off 
  2. rem **** makeall.bat - command procedure to make all .n code 
  3. rem **** first remove macro data file 
  4. rem 
  5. del mdat.dat 
  6. echo BKUP.n 
  7. n -s -iBKUP.n 
  8. if errorlevel 20 goto end 
  9. echo DEMO.n 
  10. n -s -iDEMO.n 
  11. if errorlevel 20 goto end 
  12. echo DETAB.n 
  13. n -s -iDETAB.n 
  14. if errorlevel 20 goto end 
  15. echo HELP.n 
  16. n -s -iHELP.n 
  17. if errorlevel 20 goto end 
  18. echo LIST.n 
  19. n -s -iLIST.n 
  20. if errorlevel 20 goto end 
  21. echo LOAD.n 
  22. n -s -iLOAD.n 
  23. if errorlevel 20 goto end 
  24. echo MTCE.n 
  25. n -s -iMTCE.n 
  26. if errorlevel 20 goto end 
  27. echo PHONEL.n 
  28. n -s -iPHONEL.n 
  29. if errorlevel 20 goto end 
  30. echo PRT.n 
  31. n -s -iPRT.n 
  32. if errorlevel 20 goto end 
  33. echo RAND.n 
  34. n -s -iRAND.n 
  35. if errorlevel 20 goto end 
  36. echo SCRATTR.N 
  37. n -s -iSCRATTR.N -oSCRATTR.$$$ 
  38. if errorlevel 20 goto end 
  39. n -s -iSCRATTR.$$$ 
  40. if errorlevel 20 goto end 
  41. echo SPAR.n 
  42. n -s -iSPAR.n 
  43. if errorlevel 20 goto end 
  44. echo UTE.n 
  45. n -s -iUTE.n 
  46. if errorlevel 20 goto end 
  47. echo XTREE.n 
  48. n -s -iXTREE.n 
  49. if errorlevel 20 goto end 
  50. rem 
  51. echo CLIENT.N 
  52. n -s -iCLIENT.N 
  53. if errorlevel 20 goto end 
  54. echo INV.N 
  55. n -s -iINV.N 
  56. if errorlevel 20 goto end 
  57. echo INVMENU.N 
  58. n -s -iINVMENU.N 
  59. if errorlevel 20 goto end 
  60. echo INVP.N 
  61. n -s -iINVP.N 
  62. if errorlevel 20 goto end 
  63. echo INVPAR.N 
  64. n -s -iINVPAR.N 
  65. if errorlevel 20 goto end 
  66. echo INVR.N 
  67. n -s -iINVR.N 
  68. if errorlevel 20 goto end 
  69. echo INVS.N 
  70. n -s -iINVS.N 
  71. if errorlevel 20 goto end 
  72. echo TYPE.N 
  73. n -s -iTYPE.N -oTYPE.$$$ 
  74. if errorlevel 20 goto end 
  75. n -s -iTYPE.$$$ 
  76. if errorlevel 20 goto end 
  77. rem 
  78. echo ARGS.N 
  79. n -s -iARGS.N -oARGS.$$$ 
  80. if errorlevel 20 goto end 
  81. echo FILE.N 
  82. n -s -iFILE.N -oFILE.$$$ 
  83. if errorlevel 20 goto end 
  84. echo MULTIED.N 
  85. n -s -iMULTIED.N 
  86. if errorlevel 20 goto end 
  87. echo PROCESS.N 
  88. n -s -iPROCESS.N 
  89. if errorlevel 20 goto end 
  90. echo WINPUT.N 
  91. n -s -iWINPUT.N 
  92. if errorlevel 20 goto end 
  93. rem 
  94. stu pack mdat.dat 
  95. rem 
  96. :end 
  97.